projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a82d19
)
* lisp/emacs-lisp/bytecomp.el: Use correct function to push nil
author
Vibhav Pant
<vibhavp@gmail.com>
Thu, 26 Jan 2017 09:01:16 +0000
(14:31 +0530)
committer
Vibhav Pant
<vibhavp@gmail.com>
Thu, 26 Jan 2017 09:01:16 +0000
(14:31 +0530)
* lisp/emacs-lisp/bytecomp.el: (byte-compile-cond-jump-table) Use
byte-compile-constant instead of byte-compile-form to push nil.
lisp/emacs-lisp/bytecomp.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/bytecomp.el
b/lisp/emacs-lisp/bytecomp.el
index dff8bcfa20966b3195f0f6c424a9062360867b53..b955e9919de52439b2b0d8903f2ca051d494381c 100644
(file)
--- a/
lisp/emacs-lisp/bytecomp.el
+++ b/
lisp/emacs-lisp/bytecomp.el
@@
-4067,7
+4067,7
@@
that suppresses all warnings during execution of BODY."
(byte-compile-out-tag default-tag)
(if default-case
(byte-compile-body-do-effect default-case)
- (byte-compile-
form '
nil))
+ (byte-compile-
constant
nil))
(byte-compile-out-tag donetag)
(push jump-table byte-compile-jump-tables))))